home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / CDROM / ACDPlay / arexx / FadeOut.rexx < prev    next >
OS/2 REXX Batch file  |  1997-04-27  |  490b  |  14 lines

  1. /* FadeOut.rexx 1.0 by Martin Kresse
  2.    This script demonstrates the usage of the SETVOLUME command of ACDPlay. */
  3.  
  4. OPTIONS RESULTS                         /* demand 2nd results */
  5. address 'ACDPLAY'                       /* set destination for commands */
  6.  
  7. 'GETVOLUME'                             /* get current volume */
  8.  
  9. do i = RESULT to 0 by -1
  10.     'SETVOLUME' i                       /* slowly fade volume down */
  11. end
  12.  
  13. PAUSE                                   /* switch to pause mode */
  14.